Class1450.formatToSqlDate(final Date date)#0{
df.setTimeZone(getTimeZoneOfTenant()); final String formattedSqlDate = df.format(date);
}
Instance 6
Class760.getFormattedDate(@NonNull Date date,@NonNull TimeZone timeZone,@NonNull Context context,@NonNull String separator)#0{ final java.text.DateFormat format = android.text.format.DateFormat.getDateFormat(context); format.setTimeZone(timeZone); // Hack to shift the timezone appropriately final String formattedDate = format.format(date);
}